home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM1.FTP < prev    next >
Text File  |  1997-05-23  |  408b  |  17 lines

  1. :---------------------------------------------------------------------
  2. : exam1.ftp
  3. : iFTP example script
  4. :  - make remote directory
  5. :  - upload files from local directory to new remote directory
  6. :---------------------------------------------------------------------
  7.  
  8.   open
  9.   if not success then call abort
  10.  
  11.   mkdir ftp:/release
  12.   if not success then call abort
  13.  
  14.   put release\*.* /release
  15.  
  16.  
  17.